home *** CD-ROM | disk | FTP | other *** search
/ Motor Sport Digital Archive Collection 1960s / Motor Sport Digital Archive Collection 1960s.iso / main.swf / scripts / mx / core / IFlexModuleFactory.as < prev    next >
Encoding:
Text File  |  2008-05-21  |  161 b   |  11 lines

  1. package mx.core
  2. {
  3.    public interface IFlexModuleFactory
  4.    {
  5.       function create(... rest) : Object;
  6.       
  7.       function info() : Object;
  8.    }
  9. }
  10.  
  11.